home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Monstr8a.h < prev    next >
C/C++ Source or Header  |  1999-01-29  |  1KB  |  34 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Monstr8aH
  3. #define Monstr8aH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. #include <vcl\Buttons.hpp>
  11. #include "Obutton2.h"
  12.  
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:    // IDE-verwaltete Komponenten
  17.     TImage *Image1;
  18.     TPanel *Panel1;
  19.     TTimer *Timer1;
  20.     TLabel *Label1;
  21.     TOButton *OButton1;
  22.     void __fastcall FormCreate(TObject *Sender);
  23.     void __fastcall Timer1Timer(TObject *Sender);
  24.     void __fastcall OButton1Click(TObject *Sender);
  25. private:    // Benutzer-Deklarationen
  26. public:        // Benutzer-Deklarationen
  27.     void __fastcall Obutton1Click(TObject *Sender);
  28.     __fastcall TForm1(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern TForm1 *Form1;
  32. //---------------------------------------------------------------------------
  33. #endif
  34.